crypto/hpke.hkdfKDF.hash (field)
6 uses
crypto/hpke (current package)
kdf.go#L60: hash func() hash.Hash
kdf.go#L65: var hkdfSHA256 = &hkdfKDF{hash: sha256.New, id: 0x0001, nH: sha256.Size}
kdf.go#L66: var hkdfSHA384 = &hkdfKDF{hash: sha512.New384, id: 0x0002, nH: sha512.Size384}
kdf.go#L67: var hkdfSHA512 = &hkdfKDF{hash: sha512.New, id: 0x0003, nH: sha512.Size}
kdf.go#L91: return hkdf.Extract(kdf.hash, labeledIKM, salt)
kdf.go#L101: return hkdf.Expand(kdf.hash, randomKey, string(labeledInfo), int(length))
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |